マイナーでもいいよね??

殆どVB系、でも .NET じゃない VB は知らないよん

目次

Blog 利用状況

書庫

日記カテゴリ

ローカルユーザ用のクラス

ローカルユーザを表すクラス LocalUser クラスは DirectoryObject クラスを継承し IUser インターフェイスを実装します。

ローカルユーザはWindowsアプリでしか使わないので、単に IUser インターフェイスを実装しただけのクラスです。

 

VB

Public NotInheritable Class LocalUser

  Inherits DirectoryObject

  Implements IUser

 

#Region " フレンドコンストラクタ "

  'DirectoryEntry を指定して LocalUser クラスの新しいインスタンスを初期化します

  Friend Sub New(entry As DirectoryEntry)

    MyBase.New(entry)

  End Sub

#End Region

 

#Region " パブリックプロパティ "

  'アカウントが無効かどうかを取得または設定します。

  Public Property Disabled As Boolean Implements IUser.Disabled

    Get

      If MyBase.IsDisposed Then

        Throw New ObjectDisposedException(Me.GetType().Name)

      End If

      Return DirectCast(MyBase.Entry.NativeObject, IADsUser).AccountDisabled

    End Get

    Set(value As Boolean)

      If MyBase.IsDisposed Then

        Throw New ObjectDisposedException(Me.GetType().Name)

      End If

      DirectCast(MyBase.Entry.NativeObject, IADsUser).AccountDisabled = value

    End Set

  End Property

 

  'フルネームを取得または設定します。

  Public Property FullName As String Implements IUser.FullName

    Get

      If MyBase.IsDisposed Then

        Throw New ObjectDisposedException(Me.GetType().Name)

      End If

      Return DirectCast(MyBase.Entry.Properties.Item("FullName").Value, String)

    End Get

    Set(value As String)

      If MyBase.IsDisposed Then

        Throw New ObjectDisposedException(Me.GetType().Name)

      End If

      MyBase.Entry.Properties.Item("FullName").Value = value

    End Set

  End Property

 

  'Entry の ADSI User オブジェクトを取得します。

  Public ReadOnly Property Native As IADsUser Implements IUser.Native

    Get

      If MyBase.IsDisposed Then

        Throw New ObjectDisposedException(Me.GetType().Name)

      End If

      Return DirectCast(MyBase.Entry.NativeObject, IADsUser)

    End Get

  End Property

#End Region

End Class

 

C#

public sealed class LocalUser : DirectoryObject, IUser

{

  #region インターナルコンストラクタ

  //DirectoryEntry を指定して LocalUser クラスの新しいインスタンスを初期化します。

  internal LocalUser(DirectoryEntry entry)

    : base(entry)

  {

  }

  #endregion

 

  #region パブリックプロパティ

  //アカウントが無効かどうかを取得または設定します。

  public bool Disabled

  {

    get

    {

      if (base.IsDisposed)

      {

        throw new ObjectDisposedException(this.GetType().Name);

      }

      return ((IADsUser)base.Entry.NativeObject).AccountDisabled;

    }

    set

    {

      if (base.IsDisposed)

      {

        throw new ObjectDisposedException(this.GetType().Name);

      }

      ((IADsUser)base.Entry.NativeObject).AccountDisabled = value;

    }

  }

 

  //フルネームを取得または設定します。

  public string FullName

  {

    get

    {

      if (base.IsDisposed)

      {

        throw new ObjectDisposedException(this.GetType().Name);

      }

      return (string)base.Entry.Properties["FullName"].Value;

    }

    set

    {

      if (base.IsDisposed)

      {

        throw new ObjectDisposedException(this.GetType().Name);

      }

      base.Entry.Properties["FullName"].Value = value;

    }

  }

 

  //Entry の ADSI User オブジェクトを取得します。

  public IADsUser Native

  {

    get

    {

      if (base.IsDisposed)

      {

        throw new ObjectDisposedException(this.GetType().Name);

      }

      return (IADsUser)base.Entry.NativeObject;

    }

  }

  #endregion

}

投稿日時 : 2013年7月13日 15:56

コメントを追加

# Hello! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing months of hard work due to no backup. Do you have any solutions to protect against hackers? 2021/08/24 10:25 Hello! I just wanted to ask if you ever have any t

Hello! I just wanted to ask if you ever have any trouble with hackers?

My last blog (wordpress) was hacked and I ended up losing months of hard work due
to no backup. Do you have any solutions to protect against hackers?

# Hello! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing months of hard work due to no backup. Do you have any solutions to protect against hackers? 2021/08/24 10:27 Hello! I just wanted to ask if you ever have any t

Hello! I just wanted to ask if you ever have any trouble with hackers?

My last blog (wordpress) was hacked and I ended up losing months of hard work due
to no backup. Do you have any solutions to protect against hackers?

# Hello! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing months of hard work due to no backup. Do you have any solutions to protect against hackers? 2021/08/24 10:28 Hello! I just wanted to ask if you ever have any t

Hello! I just wanted to ask if you ever have any trouble with hackers?

My last blog (wordpress) was hacked and I ended up losing months of hard work due
to no backup. Do you have any solutions to protect against hackers?

# Hello! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing months of hard work due to no backup. Do you have any solutions to protect against hackers? 2021/08/24 10:30 Hello! I just wanted to ask if you ever have any t

Hello! I just wanted to ask if you ever have any trouble with hackers?

My last blog (wordpress) was hacked and I ended up losing months of hard work due
to no backup. Do you have any solutions to protect against hackers?

# Good article. I will be experiencing a few of these issues as well.. 2021/08/30 18:49 Good article. I will be experiencing a few of thes

Good article. I will be experiencing a few of these issues
as well..

# Good article. I will be experiencing a few of these issues as well.. 2021/08/30 18:50 Good article. I will be experiencing a few of thes

Good article. I will be experiencing a few of these issues
as well..

# Good article. I will be experiencing a few of these issues as well.. 2021/08/30 18:51 Good article. I will be experiencing a few of thes

Good article. I will be experiencing a few of these issues
as well..

# Good article. I will be experiencing a few of these issues as well.. 2021/08/30 18:52 Good article. I will be experiencing a few of thes

Good article. I will be experiencing a few of these issues
as well..

# I loved as much as you'll receive carried out right here. The sketch is attractive, your authored material stylish. nonetheless, you command get got an edginess over that you wish be delivering the following. unwell unquestionably come further formerly a 2021/08/31 23:10 I loved as much as you'll receive carried out righ

I loved as much as you'll receive carried out
right here. The sketch is attractive, your authored material
stylish. nonetheless, you command get got an edginess over that you wish be delivering the following.
unwell unquestionably come further formerly again as exactly the same nearly a lot often inside case you shield this increase.

# These are actually wonderful ideas in on the topic of blogging. You have touched some good factors here. Any way keep up wrinting. 2021/09/01 20:20 These are actually wonderful ideas in on the topic

These are actually wonderful ideas in on the
topic of blogging. You have touched some good factors here.
Any way keep up wrinting.

# These are actually wonderful ideas in on the topic of blogging. You have touched some good factors here. Any way keep up wrinting. 2021/09/01 20:21 These are actually wonderful ideas in on the topic

These are actually wonderful ideas in on the
topic of blogging. You have touched some good factors here.
Any way keep up wrinting.

# These are actually wonderful ideas in on the topic of blogging. You have touched some good factors here. Any way keep up wrinting. 2021/09/01 20:22 These are actually wonderful ideas in on the topic

These are actually wonderful ideas in on the
topic of blogging. You have touched some good factors here.
Any way keep up wrinting.

# These are actually wonderful ideas in on the topic of blogging. You have touched some good factors here. Any way keep up wrinting. 2021/09/01 20:23 These are actually wonderful ideas in on the topic

These are actually wonderful ideas in on the
topic of blogging. You have touched some good factors here.
Any way keep up wrinting.

# Piece of writing writing is also a excitement, if you be acquainted with after that you can write or else it is complicated to write. quest bars http://tinyurl.com/49u8p8w7 quest bars 2021/09/10 11:51 Piece of writing writing is also a excitement, if

Piece of writing writing is also a excitement, if you be acquainted with
after that you can write or else it is complicated to write.
quest bars http://tinyurl.com/49u8p8w7 quest bars

# I have been browsing on-line more than 3 hours lately, but I by no means discovered any attention-grabbing article like yours. It is lovely worth enough for me. In my opinion, if all webmasters and bloggers made just right content material as you did, 2021/10/27 2:23 I have been browsing on-line more than 3 hours lat

I have been browsing on-line more than 3 hours lately,
but I by no means discovered any attention-grabbing article like yours.
It is lovely worth enough for me. In my opinion, if
all webmasters and bloggers made just right content material as you did, the web shall be a lot more useful than ever before.

# I have been browsing on-line more than 3 hours lately, but I by no means discovered any attention-grabbing article like yours. It is lovely worth enough for me. In my opinion, if all webmasters and bloggers made just right content material as you did, 2021/10/27 2:24 I have been browsing on-line more than 3 hours lat

I have been browsing on-line more than 3 hours lately,
but I by no means discovered any attention-grabbing article like yours.
It is lovely worth enough for me. In my opinion, if
all webmasters and bloggers made just right content material as you did, the web shall be a lot more useful than ever before.

# I have been browsing on-line more than 3 hours lately, but I by no means discovered any attention-grabbing article like yours. It is lovely worth enough for me. In my opinion, if all webmasters and bloggers made just right content material as you did, 2021/10/27 2:25 I have been browsing on-line more than 3 hours lat

I have been browsing on-line more than 3 hours lately,
but I by no means discovered any attention-grabbing article like yours.
It is lovely worth enough for me. In my opinion, if
all webmasters and bloggers made just right content material as you did, the web shall be a lot more useful than ever before.

# I have been browsing on-line more than 3 hours lately, but I by no means discovered any attention-grabbing article like yours. It is lovely worth enough for me. In my opinion, if all webmasters and bloggers made just right content material as you did, 2021/10/27 2:26 I have been browsing on-line more than 3 hours lat

I have been browsing on-line more than 3 hours lately,
but I by no means discovered any attention-grabbing article like yours.
It is lovely worth enough for me. In my opinion, if
all webmasters and bloggers made just right content material as you did, the web shall be a lot more useful than ever before.

# Wow that was odd. I just wrote an extremely long comment but after I clicked submit my comment didn't appear. Grrrr... well I'm not writing all that over again. Anyways, just wanted to say excellent blog! 2021/11/12 10:59 Wow that was odd. I just wrote an extremely long c

Wow that was odd. I just wrote an extremely long comment but after I clicked submit my comment didn't appear.
Grrrr... well I'm not writing all that over again. Anyways, just wanted to say excellent blog!

# When some one searches for his necessary thing, thus he/she desires to be available that in detail, thus that thing is maintained over here. 2021/11/20 21:53 When some one searches for his necessary thing, th

When some one searches for his necessary thing, thus he/she desires to be available that in detail, thus that thing is maintained over here.

# stromectol uk http://stromectolabc.com/
ivermectin australia 2022/02/08 3:53 Busjdhj

stromectol uk http://stromectolabc.com/
ivermectin australia

# doxycycline hyc https://doxycyline1st.com/
buy doxycycline 2022/02/25 22:49 Doxycycline

doxycycline hyc https://doxycyline1st.com/
buy doxycycline

# doxycycline tablets https://doxycyline1st.com/
how to order doxycycline 2022/02/26 10:03 Doxycycline

doxycycline tablets https://doxycyline1st.com/
how to order doxycycline

# QfDJHVsgvbeZ 2022/04/19 10:50 johnansog

http://imrdsoacha.gov.co/silvitra-120mg-qrms

# covid medikament https://paxlovid.best/
paxlovid prix 2022/09/07 23:12 Paxlovid

covid medikament https://paxlovid.best/
paxlovid prix

# pills for ed https://erectiledysfunctionpills.shop/ 2022/10/14 16:48 Erectile

pills for ed https://erectiledysfunctionpills.shop/

# prednisone 20mg nz https://prednisone20mg.icu/ 2022/10/15 7:22 Prednisone

prednisone 20mg nz https://prednisone20mg.icu/

# dating sifes https://datingonlinehot.com/
singles website for farmers 2022/12/09 12:11 Dating

dating sifes https://datingonlinehot.com/
singles website for farmers

# erection pills https://edpills.science/
gnc ed pills 2023/01/07 8:38 EdPills

erection pills https://edpills.science/
gnc ed pills

# over the counter essentials united healthcare https://overthecounter.pro/# 2023/05/08 13:06 OtcJikoliuj

over the counter essentials united healthcare https://overthecounter.pro/#

# pharcharmy online no script https://pillswithoutprescription.pro/# 2023/05/14 15:22 PillsPresc

pharcharmy online no script https://pillswithoutprescription.pro/#

# farmacia online https://farmaciait.pro/ migliori farmacie online 2023 2023/12/04 3:48 Farmacia

farmacia online https://farmaciait.pro/ migliori farmacie online 2023

# ed pills for sale https://edpills.tech/# best medication for ed 2023/12/22 23:56 EdPills

ed pills for sale https://edpills.tech/# best medication for ed

# buy prednisone mexico https://prednisone.bid/ buy prednisone online india 2023/12/27 2:40 Prednisone

buy prednisone mexico https://prednisone.bid/ buy prednisone online india

タイトル
名前
URL
コメント