Microsoft.TeamFoundation.VersionControl.Client.GettingEventArgs.GettingEventArgs C# (CSharp) Method

GettingEventArgs() private method

private GettingEventArgs ( Microsoft.TeamFoundation.VersionControl.Client.Workspace workspace, Microsoft.TeamFoundation.VersionControl.Client.GetOperation operation ) : System
workspace Microsoft.TeamFoundation.VersionControl.Client.Workspace
operation Microsoft.TeamFoundation.VersionControl.Client.GetOperation
return System
        internal GettingEventArgs(Workspace workspace, GetOperation operation)
        {
            this.workspace = workspace;
            this.operation = operation;

            if (operation.ChangeType == ChangeType.Delete)
                status = OperationStatus.Deleting;
            else
                status = OperationStatus.Getting;
        }
GettingEventArgs